home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Introducing the New Way to Shop From Home
/
Introducing the New Way to Shop From Home (Iceland Foods) (2003).iso
/
pc
/
help.dxr
/
UI elements_23_flash volume.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-01-01
|
446 b
|
19 lines
on GetUrl me, stringFromFlash
global newVolume
if stringFromFlash = "up" then
newVolume = newVolume + 16
sprite(7).volume = newVolume / 4
if newVolume > 255 then
newVolume = 255
end if
end if
if stringFromFlash = "down" then
newVolume = newVolume - 16
sprite(7).volume = newVolume / 4
if newVolume <= 0 then
newVolume = -1
end if
end if
sprite(8).setVariable("test", EMPTY & newVolume)
end